home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / lib / mntlib44.zoo / mntlib / labs.c < prev    next >
C/C++ Source or Header  |  1994-03-01  |  134b  |  14 lines

  1. /* return absolute values */
  2. #include <stdlib.h>
  3.  
  4. #ifdef labs
  5. #undef labs
  6. #endif
  7.  
  8. long
  9. labs(x)
  10.   long x;
  11. {
  12.   return x < 0 ? -x : x;
  13. }
  14.